iT邦幫忙

2023 iThome 鐵人賽

DAY 7
0
自我挑戰組

CPE 49題訓練系列 第 7

YKL14.UVA10222 Decode the Mad man YKL15.UVA10252 Common Permutation

  • 分享至 

  • xImage
  •  

Decode the Mad man

arr=list("qwertyuiop[]asdfghjkl;'zxcvbnm,./")
while 1:
	try:
		a=list(input())
		for i in range(len(a)):
			a[i]=a[i].lower()
			for j in range(len(arr)):
				if a[i]==arr[j]:
					a[i]=arr[j-2]
		for i in a:
			print(i,end="")
		print()
	except:
		break

Common Permutation

while 1:
	try:
		a=list(input())
		b=list(input())
		a=sorted(a)
		ans=[]
		for i in a:
			if i in b and i!=' ':
				ans.append(i)
				b.remove(i)
		for i in ans:
			print(i,end="")
		print()
	except:
		break

上一篇
YKL43.UVA10420 List of Conquests YKL32.UVA10008 What's Cryptanalysis
下一篇
YKL42.UVA490 Rotating Sentences
系列文
CPE 49題訓練30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言